Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Side by Side Diff: templates/edge/[Content_Types].xml.tmpl

Issue 29345751: Issue 4028 - Add support for Edge extensions to buildtools (Closed)
Patch Set: Address comments on patch set 5 Created July 12, 2016, 3:41 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 <?xml version="1.0" encoding="UTF-8"?>
2 <Types xmlns="http://schemas.openxmlformats.org/package/2006/content-types">
3 {% for extension, content_type in defaults.items() -%}
4 <Default Extension="{{ extension }}" ContentType="{{ content_type }}"/>
5 {% endfor -%}
6 {% for part_name, content_type in overrides.items() -%}
7 <Override PartName="{{ part_name }}" ContentType="{{ content_type }}"/>
8 {% endfor -%}
9 </Types>
OLDNEW

Powered by Google App Engine
This is Rietveld